home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
PostRedraw.ifx
< prev
next >
Wrap
Text File
|
1996-03-02
|
515b
|
26 lines
/*
* $VER: PostRedraw 1.00.00 (24.9.92)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* This program is called after ImageFX redraws the screen; this allows
* you to add a hook to update another display automatically. You must
* first call "SetPrefs AutoRender On" before this will actually be
* used.
*
*/
PARSE ARG left top width height .
OPTIONS RESULTS
IF ARG() > 0 THEN DO
Render Area left top width height
END
ELSE DO
Render Go
END
EXIT